home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 June / PersonalComputerWorld-June2009-CoverdiscCD.iso / Software / Freeware / Firebug 1.3.3 / firebug-1.3.3-fx.xpi / content / firebug / highlighter.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2008-07-03  |  2.2 KB  |  118 lines

  1. /* See license.txt for terms of usage */
  2.  
  3. .firebugHighlight {
  4.     z-index: 2147483647;
  5.     position: absolute;
  6.     background-color: #3875d7;
  7. }
  8.  
  9. .firebugLayoutBoxParent {
  10.     z-index: 2147483647;
  11.     position: absolute;
  12.     background-color: transparent;
  13.     border-right: 1px dashed #BBBBBB;
  14.     border-bottom: 1px dashed #BBBBBB;
  15. }
  16.  
  17. .firebugRulerH {
  18.     position: absolute;
  19.     top: -15px;
  20.     left: 0;
  21.     width: 100%;
  22.     height: 14px;
  23.     background: url(chrome://firebug/skin/rulerH.png) repeat-x;
  24.     border-top: 1px solid #BBBBBB;
  25.     border-right: 1px dashed #BBBBBB;
  26.     border-bottom: 1px solid #000000;
  27. }
  28.  
  29. .firebugRulerV {
  30.     position: absolute;
  31.     top: 0;
  32.     left: -15px;
  33.     width: 14px;
  34.     height: 100%;
  35.     background: url(chrome://firebug/skin/rulerV.png) repeat-y;
  36.     border-left: 1px solid #BBBBBB;
  37.     border-right: 1px solid #000000;
  38.     border-bottom: 1px dashed #BBBBBB;
  39. }
  40.  
  41. .overflowRulerX > .firebugRulerV {
  42.     left: 0;
  43. }
  44.  
  45. .overflowRulerY > .firebugRulerH {
  46.     top: 0;
  47. }
  48.  
  49. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  50.  
  51. .firebugLayoutBoxOffset {
  52.     z-index: 2147483647;
  53.     position: absolute;
  54.     opacity: 0.8;
  55. }
  56.  
  57. .firebugLayoutBoxMargin {
  58.     background-color: #EDFF64;
  59. }
  60.  
  61. .firebugLayoutBoxBorder {
  62.     background-color: #666666;
  63. }
  64.  
  65. .firebugLayoutBoxPadding {
  66.     background-color: SlateBlue;
  67. }
  68.  
  69. .firebugLayoutBoxContent {
  70.     background-color: SkyBlue;
  71. }
  72.  
  73. /*.firebugHighlightGroup .firebugLayoutBox {
  74.     background-color: transparent;
  75. }
  76.  
  77. .firebugHighlightBox {
  78.     background-color: Blue !important;
  79. }*/
  80.  
  81. .firebugLayoutLine {
  82.     z-index: 2147483647;
  83.     background-color: #000000;
  84.     opacity: 0.4;
  85. }
  86.  
  87. .firebugLayoutLineLeft,
  88. .firebugLayoutLineRight {
  89.     position: fixed;
  90.     width: 1px;
  91.     height: 100%;
  92. }
  93.  
  94. .firebugLayoutLineTop,
  95. .firebugLayoutLineBottom {
  96.     position: absolute;
  97.     width: 100%;
  98.     height: 1px;
  99. }
  100.  
  101. .firebugLayoutLineTop {
  102.     margin-top: -1px;
  103.     border-top: 1px solid #999999;
  104. }
  105.  
  106. .firebugLayoutLineRight {
  107.     border-right: 1px solid #999999;
  108. }
  109.  
  110. .firebugLayoutLineBottom {
  111.     border-bottom: 1px solid #999999;
  112. }
  113.  
  114. .firebugLayoutLineLeft {
  115.     margin-left: -1px;
  116.     border-left: 1px solid #999999;
  117. }
  118.